* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 :root {
    --black: #000000;
    --light-grey: #9b9ba3;
    --background-color: #000000a8;
    --text-color: #ecf0f1;
    --header-color: #E72CB4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body {
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    background-image: linear-gradient(75deg, var(--background-color), var(--light-grey));
    background-attachment: fixed;
}

.logo {
    margin-left: 20px;
    margin-top: 12px;
}

nav {
    font-size: 1.2rem;
    height: 95px;
    font-weight: 700;
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    color: #000000;
    padding: .5rem 1rem;
}

nav h1 {
    letter-spacing: 5px;
    padding: 0.5rem 1rem;
    padding-right: calc(1rem - 5px);
    border: 3px solid white;
    /* border-radius: 8px; */
}

nav h1:hover {
    color: #E72CB4;
}

.menu {
    display: none;
    align-items: center;
    margin: 0 -1rem;
}

.menu a {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: 0.3s;
}

.menu a:hover {
    color: #ffffff;
    background-color: #E72CB4;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
}

.hamburger {
    appearance: none;
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
    display: block;
    width: 2rem;
    height: 2rem;
}

.hamburger span {
    color: #000000;
    font-size: 2rem;
}

.mobile-menu {
    position: fixed;
    font-size: 1.5rem;
    font-weight: 700;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
    padding-top: 6rem;
    opacity: 0;
    transform: translateY(-100%);
    background-color: #000000b2;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.363);
    color: #FFF;
    transition: 0.3s;
}

.mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    color: #ebebebf1;
    text-align: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: 0.3s;
}

.mobile-menu a:hover {
    color: rgb(255, 255, 255);
    background-color: #E72CB4;
}

@media (min-width: 820px) {
    .mobile-menu,
    .hamburger {
        display: none;
    }
    .menu {
        display: flex;
    }
}

.hero {
    padding: 4rem 0 4rem;
    max-height: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    padding-right: 2rem;
}

.hero p {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 4rem;
    margin-bottom: .5rem;
    font-weight: 800;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 3rem;
}

.btn {
    font-family: 'Barlow', sans-serif;
    display: inline-block;
    box-shadow: 2px 4px 4px 0px #0707076e;
    background-color: #ff009d;
    color: #fff;
    padding: .8rem 1.4rem;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    font-weight: 600;
    margin-top: 2rem;
    font-size: 1.5rem;
}

.btn:hover {
    background-color: #000000;
}

.btn2 {
    font-family: 'Barlow', sans-serif;
    display: inline-block;
    box-shadow: 2px 4px 4px 0px #0707076e;
    border: 3px solid black;
    background-color: #ffffff56;
    color: #000000;
    padding: .7rem 2.5rem;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    font-weight: 700;
    margin-top: 2rem;
    margin-left: 2rem;
    font-size: 1.5rem;
}

.btn2:hover {
    background-color: #000000;
    color: #ffffff;
}

.about-us {
    max-height: 100%;
    background-color: #000000;
    color: #fff;
}

.about-us {
    max-height: 100%;
    background-color: #00000093;
    color: #fff;
}

#about-us h2 {
    margin-top: 5px;
    color: #ff009d;
    text-align: center;
    padding: 2rem;
}

.about-us-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 50px;
}

.about-us-text {
    flex: 1;
    color: #fff;
    font-size: .95rem;
    line-height: 1.4rem;
}

.about-us-image {
    flex: 1;
}

.about-us-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services,
.reviews,
.about-us,
.contact {
    padding: 1rem 0;
}

.services h2,
.reviews h2,
.about-us h2,
.contact h2 {
    margin-top: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
}

.services {
    background-image: linear-gradient(to left, #9b9ba3, #000000bd);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: rgb(255, 255, 255);
    padding: .5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: auto;
    margin-bottom: .2rem;
    border-radius: 7px;
}

.service-item p {
    color: var(--light-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    margin-top: 20px;
    color: #000000;
    font-size: 1.1em;
    line-height: 1.3rem;
}

.service-item h3 {
    margin-bottom: 0.rem;
}

.service-item a {
    margin-bottom: 0.2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.7rem;
    color: #ff009d;
}

.service-item a:hover {
    margin-bottom: 0.2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.7rem;
    color: #000000;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

.banner-container {
    display: flex;
    width: 100%;
}

.banner-container img {
    width: 20%;
    /* 100% divided by 5 images */
    height: auto;
}


/* ContactPage */

#contact-box {
    position: inherit;
    max-width: 100%;
    height: 100%;
    background-repeat: repeat-y;
    padding-top: 50px;
    text-align: center;
    color: #fff;
    padding-bottom: 30px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.253), rgb(56, 57, 75));
}

#contact-box h3 {
    line-height: 2rem;
    font-weight: 400;
    font-size: 1.5;
}

#contact-box h2 {
    line-height: 2rem;
    font-weight: 400;
    font-size: 1.3rem;
    padding-bottom: 1rem;
}

#contact-box p {
    padding-bottom: 2rem;
}

#contact-box a {
    font-size: 2rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    line-height: 2rem;
}

#contact-box a:hover {
    text-decoration: none;
    color: #ff009d;
}

@media (max-width: 768px) {
    .banner-container img {
        width: 20%;
        /* 2 images per row */
    }
}

@media (max-width: 350px) {
    .banner-container img {
        width: 100%;
        /* 1 image per row */
    }
}

.client-section {
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    height: auto;
}

.responsive-img {
    max-width: 120px;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 10px;
}


/* Responsive design */

@media (max-width: 800px) {
    .responsive-img {
        max-width: 100px;
    }
}

@media (max-width: 600px) {
    .responsive-img {
        max-width: 70px;
    }
}

@media (max-width: 400px) {
    .responsive-img {
        max-width: 50px;
    }
}

.footer {
    background-color: #24262b;
    padding: 70px 0;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
}

.footer-col a {
    font-size: 1.3rem;
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
}

.footer-col a:hover {
    text-decoration: none;
    color: #e91e63;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 30px;
}


/* Review Footer */

#review-footer {
    background-color: #ffffff;
    width: 100%;
    padding-bottom: 20px;
    overflow: hidden;
    text-align: center;
}

#review-footer h1 {
    margin-top: 6px;
    font-size: 28px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    margin-bottom: 20px;
}

#review-footer a {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
}

#review-footer a:hover {
    color: #e91e63;
}

#review-footer .logo {
    margin-top: 40px;
}

@media(max-width: 900px) {
    .review-footer {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 400px) {
    .footer-col {
        width: 100%;
    }
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .image-container {
        flex: 1 1 50%;
        /* Take up 50% of the container on medium screens */
    }
}

@media (max-width: 480px) {
    .image-container {
        flex: 1 1 100%;
        /* Take up 100% of the container on small screens */
    }
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .image-container {
        flex: 1 1 50%;
        /* Take up 50% of the container on medium screens */
    }
}

@media (max-width: 480px) {
    .image-container {
        flex: 1 1 100%;
        /* Take up 100% of the container on small screens */
    }
}


/*responsive*/

@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        width: 100%;
        text-align: center;
        padding-top: 1rem;
    }
    .nav-links.active {
        display: flex;
        flex-direction: column;
    }
    .nav-links li {
        margin: 0.5rem 0;
    }
    .hero-content {
        flex-direction: column;
    }
    .hero-text {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    .hero-image {
        text-align: center;
    }
    .review-card {
        flex-basis: 100%;
    }
    .about-us-content {
        flex-direction: column;
    }
}

.container-signs {
    background-color: black;
    margin: 0;
    padding: 0;
    max-width: 100%;
    padding: 10px;
}

.container-signs h1 {
    color: #e91e63;
    max-width: 80%;
    font-size: 1.7rem;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.container-signs p {
    max-width: 70%;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.container-signs h2 {
    color: #e91e63;
    max-width: 80%;
    font-size: 2rem;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.image-holder {
    flex: 1 1 18%;
    margin: 5px;
    max-width: 18%;
}

.image-holder img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .container-signs p {
        max-width: 90%;
        font-size: 1.2rem;
        line-height: 1.4;
        margin-top: 20px;
        margin-bottom: 30px;
        text-align: center;
        margin-left: auto;
        margin-right: auto
    }
}

@media (max-width: 768px) {
    .image-holder {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    .image-holder {
        flex: 1 1 90%;
        max-width: 90%;
    }
}